Convert a byte string to a list of integersΒΆ

Convert a byte string to a list of integers.
x = b'Abc'

print(list(x))

Output:

[65, 98, 99]